/* assets/css/pages/home/hero.css */

.hero-sovereign-impact {
    background: #000000 !important; /* Pure Black */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace; /* Professional Technical Font */
}

/* Hardware Telemetry (Blinking Dots) */
.hw-telemetry {
    position: absolute;
    top: 50px;
    left: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.t-node {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.3);
}

.led { width: 8px; height: 8px; border-radius: 50%; }

/* Red and Blue Hardware Blinking */
.red-glow { 
    background: #ff003c; 
    box-shadow: 0 0 15px #ff003c; 
    animation: hardwarePulse 0.8s infinite alternate; 
}
.blue-glow { 
    background: #00d2ff; 
    box-shadow: 0 0 15px #00d2ff; 
    animation: hardwarePulse 0.8s infinite alternate 0.4s; 
}

@keyframes hardwarePulse {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.2; transform: scale(0.85); }
}

/* Kinetic Identity Branding */
.sovereign-wrap { text-align: center; z-index: 10; width: 100%; }

.sys-id { font-size: 0.8rem; letter-spacing: 6px; color: #8b2cf5; margin-bottom: 20px; font-weight: bold; }

.mega-branding {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -6px;
    margin: 0;
}

.outline-syntax {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 30px rgba(139, 44, 245, 0.2);
}

.intel-tagline {
    font-size: 1rem;
    letter-spacing: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 25px;
}

.impact-statement {
    max-width: 750px;
    margin: 50px auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Tactical Actions */
.nexus-actions { display: flex; justify-content: center; gap: 50px; align-items: center; margin-top: 50px; }

.btn-nexus {
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: bold;
    transition: 0.3s;
}

.btn-nexus:hover { color: #8b2cf5; text-shadow: 0 0 15px #8b2cf5; }
.br { opacity: 0.3; }

.btn-ghost {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-ghost:hover { color: #fff; letter-spacing: 4px; }

/* Edge Metadata */
.edge-intel {
    position: absolute;
    bottom: 40px;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 3px;
}
.left-bottom { left: 40px; }
.right-bottom { right: 40px; }